.card-soal-isi>button {
  border-style: none;
  padding: 0.5em;
  cursor: pointer;
  background: #e37222;
  margin: 0.5em;
  font-size: 1em;
}

.card-soal-isi>button:hover {
  border-style: none;
  padding: 0.5em;
  cursor: pointer;
  margin: 0.5em;
  font-size: 1em;
  border: 2px solid #e37222;
  background: none;
}

.btn-objek {
  border-style: none;
  padding: 0.5em;
  margin: 0.5vw 0;
  cursor: pointer;
  background: #e37222;
  color: whitesmoke;
  font-weight: bold;
  border-radius: 5px;
}

.btn-objek:hover {
  background: #eeaa7b;
}

.tr-color {
  background-color: #66b9bf;
}

.btn-objek-aktif {
  background: #eeaa7b;
}

/*
########################
### SETUP PERTANYAAN ###
########################
*/

.petunjuk {
  width: 96%;
  background-color: #eeaa7b;
  padding: 0.5% 2% 0.5% 2%;
  border-radius: 7px;
  color: black;
  align-items: center;
  font-size: 1em;
  margin: 1em 0 0 0;
  line-height: 1.5;
}

.isi {
  display: flex;
  margin-top: 0.5%;
}

.pilihan {
  flex: 1;
  background: #66b9bf;
  color: black;
  border-radius: 20px 0 0 0;
  padding: 1%;
}

.pilihan ol {
  list-style-type: upper-latin;
  padding: 0 10%;
  line-height: 2;
}

.soal {
  flex: 2;
  border-radius: 0 0 20px 0;
  background-color: #e37222;
  padding: 1%;
  height: max-content;
}

.soal .jawab {
  width: 40px;
  height: 20px;
  text-align: center;
  cursor: text;
}

.soal form {
  line-height: 2;
}

.btn-soal {
  display: flex;
  justify-content: center;
  padding-top: 1em;
}

.btn-soal>button {
  margin-right: 2%;
  text-decoration: none;
  background: #66b9bf;
  border: none;
  padding: 0.5em;
  font-size: 1rem;
  border-radius: 5px;
}

.btn-soal>button:nth-child(3) {
  display: none;
}

.btn-soal>button:hover {
  border: 1px solid #66b9bf;
  background: white;
  cursor: pointer;
}

.btn-soal>button>a {
  text-decoration: none;
  color: black;
}

.btn-bgpeach {
  display: flex;
  justify-content: center;
  padding-top: 1em;
}

.btn-bgpeach>button {
  margin-right: 2%;
  text-decoration: none;
  background: #66b9bf;
  border: none;
  padding: 0.5em;
  font-size: 1rem;
  border-radius: 5px;
}

.btn-bgpeach>button:hover {
  border: 2px solid #66b9bf;
  background: #eeaa7b;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.btn-bgpeach>.btn-bgpeach-aktif {
  border: 2px solid #66b9bf;
  background: #eeaa7b;
  color: white;
  cursor: pointer;
}


/*
********************
**** SETUP KUIS ****
********************
*/

.kepala-kuis {
  justify-content: space-between;
  padding: 0 2em;
}

.container-soal {
  width: 90vw;
  height: 89vh;
}

.container-soal-isi {
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
  /* margin: 0 1em 0 1em; */
  margin: auto;
  width: 95%;
  height: auto;
}

.wrapper-soal {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1.2rem;
  padding: 1em 1em 0 1em;
}

.wrapper-btn {
  display: flex;
  justify-content: space-between;
  padding: 0 1em 1em 1em;
}

.wrapper-btn>button {
  padding: 0.5em;
  background-color: #e37222;
  border-style: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.wrapper-btn>button:hover {
  background-color: #eeaa7b;
}

.pilihan-kuis {
  background-color: #66b9bf;
  padding: 1em;
  display: flex;
  margin-bottom: 1em;
}

.pilihan-kuis:hover {
  background-color: #07889b;
  cursor: pointer;
}

.soal-kuis {
  margin: 1em 0;
  font-size: 1em;
}

.kuis-no {
  background-color: #07889b;
  color: white;
  padding: 0.3em;
  border-radius: 5px;
}

.container-navigasi {
  position: absolute;
  background-color: sienna;
}

.wrapper-navigasi-soal {
  display: flex;
}

.navigasi-soal {
  background-color: seagreen;
  margin: 2%;
  width: 3vmax;
  height: 3vmax;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: flex;
  align-items: center;
}

.btn-daftar-soal,
.btn-petunjuk-soal {
  padding: 0.5em;
  border-radius: 15px;
  color: white;
  font-weight: bold;
  border: 2px solid white;
  cursor: pointer;
  margin-right: 1vmax;
}

.btn-daftar-soal:hover {
  background-color: white;
  color: #07889b;
}

.btn-petunjuk-soal:hover {
  background-color: white;
  color: #07889b;
}

.btn-soal-aktif {
  background-color: white;
  color: #07889b;
}

.wrapper-petunjuk-soal {
  position: absolute;
  width: 90vw;
  height: 40%;
  background-color: #eeaa7b;
  padding: 2vmax 5vmax;
}

/*
********************
*** SETUP MOBILE ***
********************
*/

@media screen and (max-width: 800px) {
  .isi {
    flex-direction: column;
  }

  .pilihan>p {
    padding: 2%;
  }

  .soal {
    padding-left: 2%;
  }
}